home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / Scripting / Source / StevesParser.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-09  |  709 b   |  26 lines  |  [TEXT/MPCC]

  1. /*---------------------------------------------------------------
  2.     Copyright 1995, Steve Israelson
  3.  
  4.     I own this code.  You are free to use this code in any software
  5.     you want.  You may not sell this source code at all, you can 
  6.     sell your product though.  If you want to include this code
  7.     in any code collection (CD-Roms etc) this is OK as long as
  8.     I get a complimentary copy.
  9.             Steve.
  10.     
  11. ---------------------------------------------------------------*/
  12. #pragma once
  13.  
  14. #include <LList.h>
  15.  
  16. class MyParser
  17.     {
  18. public:
  19.     LList        expressions;    // holds the list of the regular expressions
  20.     
  21.                 MyParser(void);
  22.                 ~MyParser();
  23.     long        Parse(char *text, LList *params);
  24.     void        AddExpression(char *text, long ID);
  25.     };
  26.